Passed
Push — master ( 66fc5e...2c9c12 )
by Rafael S.
01:28
created

index.js ➔ ???   B

Complexity

Conditions 2
Paths 2

Size

Total Lines 29

Duplication

Lines 0
Ratio 0 %

Importance

Changes 22
Bugs 0 Features 0
Metric Value
c 22
b 0
f 0
nc 2
dl 0
loc 29
rs 8.8571
cc 2
nop 3
1
/*!
2
 * wavefile
3
 * Read & write wave files with 8, 16, 24, 32 PCM, 32 IEEE & 64-bit data.
4
 * Copyright (c) 2017 Rafael da Silva Rocha. MIT License.
5
 * https://github.com/rochars/wavefile
6
 *
7
 */
8
9
const wavefile = require("./src/wavefileinterface");
10
11
module.exports.WaveFile = wavefile.WaveFile;
12
13